home *** CD-ROM | disk | FTP | other *** search
/ Compendium Deluxe 1 / LSD Compendium Deluxe 1.iso / a / programming / assemblers / caz.lha / caz / src / calc.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-01-29  |  94 b   |  10 lines

  1. struct node
  2. {
  3.     int type,
  4.         value;
  5.     struct node *prev;
  6. };
  7.  
  8. #define VALUE 1
  9. #define SYMBOL 2
  10.